Action hook '{$taxonomy}_edit_form'

in WP Core File wp-admin/edit-tag-form.php at line 291

Description

Fires at the end of the Edit Term form for all taxonomies. The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. Possible hook names include: - `category_edit_form` - `post_tag_edit_form`

Occurrences

Filename Line Number
wp-admin/edit-tag-form.php 291

Parameters

Type Name Description
WP_Term $tag Current taxonomy term object.
string $taxonomy Current taxonomy slug.

PHP Doc

/**
 * Fires at the end of the Edit Term form for all taxonomies.
 *
 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
 *
 * Possible hook names include:
 *
 *  - `category_edit_form`
 *  - `post_tag_edit_form`
 *
 * @since 3.0.0
 *
 * @param WP_Term $tag      Current taxonomy term object.
 * @param string  $taxonomy Current taxonomy slug.
 */